home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gnat1792.zip / gnat179b / t-adainc / a-tasatt.ads < prev    next >
Text File  |  1994-05-19  |  3KB  |  54 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                  A D A . T A S K _ A T T R I B U T E S                   --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.3 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. with Ada.Task_Identification;
  26.  
  27. generic
  28.    type Attribute is private;
  29.    Initial_Value : Attribute;
  30.  
  31. package Ada.Task_Attributes is
  32.  
  33.    type Attribute_Handle is access all Attribute;
  34.  
  35.    function Value
  36.      (T    : Task_Identification.Task_Id := Task_Identification.Current_Task)
  37.       return Attribute;
  38.    pragma Inline (Value);
  39.  
  40.    function Reference
  41.      (T    : Task_Identification.Task_Id := Task_Identification.Current_Task)
  42.       return Attribute_Handle;
  43.  
  44.    procedure Set_Value
  45.      (Val : Attribute;
  46.       T   : Task_Identification.Task_Id := Task_Identification.Current_Task);
  47.    pragma Inline (Set_Value);
  48.  
  49.    procedure Reinitialize
  50.      (T : Task_Identification.Task_Id := Task_Identification.Current_Task);
  51.    pragma Inline (Reinitialize);
  52.  
  53. end Ada.Task_Attributes;
  54.